home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_src.lha / gcc-2.7.0-amiga / config / m68k / xm-amix.h < prev    next >
C/C++ Source or Header  |  1995-06-15  |  2KB  |  48 lines

  1. /* Definitions of host machine for GNU compiler.
  2.    Commodore Amiga A3000UX version.
  3.  
  4.    Copyright (C) 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 59 Temple Place - Suite 330,
  21. Boston, MA 02111-1307, USA.  */
  22.  
  23. #include "m68k/xm-m68kv.h"    /* Use the System V flavor of m68k host */
  24.  
  25. #define HAVE_VPRINTF        /* Host has vprintf() in library */
  26. #define rindex strrchr
  27. #define index strchr
  28.  
  29. /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
  30.    We need this file for things like R_OK, not necessarily prototypes. */
  31.  
  32. #define FULL_PROTOTYPES
  33.  
  34. #if defined (__GNUC__) && __GNUC__ == 1
  35. #define alloca __builtin_alloca
  36. #endif
  37.  
  38. #if 0 /* I don't want individual ports to be inconsistent about this.
  39.      I regard fancy_abort as a half-solution and not the right way
  40.      to do things. --rms.  */
  41. /* The m88k and mips ports make use of fancy_abort to give possibly helpful
  42.    abort information rather than just dumping core.  They do it in their
  43.    tm-* files.  It seems more logical that this is a characteristic of
  44.    the host machine and not the target machine, so we do it here. */
  45.  
  46. #define abort fancy_abort    /* give possibly helpful abort info */
  47. #endif
  48.